home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / KOOB / control / client / interfaces / menuscreen.gui < prev    next >
Encoding:
Text File  |  2006-09-25  |  2.7 KB  |  103 lines

  1. new GuiChunkedBitmapCtrl(MenuScreen) {
  2.    profile = "GuiContentProfile";
  3.    horizSizing = "width";
  4.    vertSizing = "height";
  5.    position = "0 0";
  6.    extent = "640 480";
  7.    minExtent = "8 8";
  8.    visible = "1";
  9.    helpTag = "0";
  10.    bitmap = "./interfaces/emaga_background";
  11.    useVariable = "0";
  12.    tile = "0";
  13. new GuiButtonCtrl() {
  14.       profile = "GuiButtonProfile";
  15.       horizSizing = "right";
  16.       vertSizing = "top";
  17.       position = "30 138";
  18.       extent = "120 20";
  19.       minExtent = "8 8";
  20.       visible = "1";
  21.       command = "Canvas.setContent(SoloScreen);";
  22.       text = "Play Solo";
  23.       groupNum = "-1";
  24.       buttonType = "PushButton";
  25.          helpTag = "0";
  26.    };
  27.    new GuiButtonCtrl() {
  28.       profile = "GuiButtonProfile";
  29.       horizSizing = "right";
  30.       vertSizing = "top";
  31.       position = "30 166";
  32.       extent = "120 20";
  33.       minExtent = "8 8";
  34.       visible = "1";
  35.       command = "Canvas.setContent(ServerScreen);";
  36.       text = "Find a Server";
  37.       groupNum = "-1";
  38.       buttonType = "PushButton";
  39.          helpTag = "0";
  40.    };
  41.    new GuiButtonCtrl() {
  42.       profile = "GuiButtonProfile";
  43.       horizSizing = "right";
  44.       vertSizing = "top";
  45.       position = "30 192";
  46.       extent = "120 20";
  47.       minExtent = "8 8";
  48.       visible = "1";
  49.       command = "Canvas.setContent(HostScreen);";
  50.       text = "Host Game";
  51.       groupNum = "-1";
  52.       buttonType = "PushButton";
  53.          helpTag = "0";
  54.    };
  55.    new GuiButtonCtrl() {
  56.       profile = "GuiButtonProfile";
  57.       horizSizing = "right";
  58.       vertSizing = "top";
  59.       position = "30 237";
  60.       extent = "120 20";
  61.       minExtent = "8 8";
  62.       visible = "1";
  63.       command = "getHelp();";
  64.       helpTag = "0";
  65.       text = "Info";
  66.       groupNum = "-1";
  67.       buttonType = "PushButton";
  68.    };
  69.  
  70.    new GuiButtonCtrl() {
  71.       profile = "GuiButtonProfile";
  72.       horizSizing = "right";
  73.       vertSizing = "top";
  74.       position = "29 400";
  75.       extent = "110 20";
  76.       minExtent = "8 8";
  77.       visible = "1";
  78.       command = "Quit();";
  79.       helpTag = "0";
  80.       text = "Quit";
  81.       groupNum = "-1";
  82.       buttonType = "PushButton";
  83.    };
  84.    new GuiButtonCtrl() {
  85.       profile = "GuiButtonProfile";
  86.       horizSizing = "right";
  87.       vertSizing = "top";
  88.       position = "30 265";
  89.       extent = "120 20";
  90.       minExtent = "8 8";
  91.       visible = "1";
  92.       command = "Canvas.setContent(ServerScreen);";
  93.       helpTag = "0";
  94.       text = "Connect To Server";
  95.       groupNum = "-1";
  96.       buttonType = "PushButton";
  97.    };
  98.    new GuiButtonCtrl() {
  99.       command = "Canvas.pushDialog(SetupScreen);";
  100.       text = "Setup";
  101.    };
  102. };
  103.